home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / CHIP / Porady / Srodowisko PHP-MySQL / WAMP5 1.3 / wamp5_1.3.exe / {app} / Apache / install.ini < prev    next >
INI File  |  2004-07-14  |  42KB  |  1,174 lines

  1. [PHP]
  2.  
  3. ;;;;;;;;;;;
  4. ; WARNING ;
  5. ;;;;;;;;;;;
  6. ; This is the default settings file for new PHP installations.
  7. ; By default, PHP installs itself with a configuration suitable for
  8. ; development purposes, and *NOT* for production purposes.
  9. ; For several security-oriented considerations that should be taken
  10. ; before going online with your site, please consult php.ini-recommended
  11. ; and http://php.net/manual/en/security.php.
  12.  
  13.  
  14. ;;;;;;;;;;;;;;;;;;;
  15. ; About this file ;
  16. ;;;;;;;;;;;;;;;;;;;
  17. ; This file controls many aspects of PHP's behavior.  In order for PHP to
  18. ; read it, it must be named 'php.ini'.  PHP looks for it in the current
  19. ; working directory, in the path designated by the environment variable
  20. ; PHPRC, and in the path that was defined in compile time (in that order).
  21. ; Under Windows, the compile-time path is the Windows directory.  The
  22. ; path in which the php.ini file is looked for can be overridden using
  23. ; the -c argument in command line mode.
  24. ;
  25. ; The syntax of the file is extremely simple.  Whitespace and Lines
  26. ; beginning with a semicolon are silently ignored (as you probably guessed).
  27. ; Section headers (e.g. [Foo]) are also silently ignored, even though
  28. ; they might mean something in the future.
  29. ;
  30. ; Directives are specified using the following syntax:
  31. ; directive = value
  32. ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
  33. ;
  34. ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
  35. ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
  36. ; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
  37. ;
  38. ; Expressions in the INI file are limited to bitwise operators and parentheses:
  39. ; |        bitwise OR
  40. ; &        bitwise AND
  41. ; ~        bitwise NOT
  42. ; !        boolean NOT
  43. ;
  44. ; Boolean flags can be turned on using the values 1, On, True or Yes.
  45. ; They can be turned off using the values 0, Off, False or No.
  46. ;
  47. ; An empty string can be denoted by simply not writing anything after the equal
  48. ; sign, or by using the None keyword:
  49. ;
  50. ;  foo =         ; sets foo to an empty string
  51. ;  foo = none    ; sets foo to an empty string
  52. ;  foo = "none"  ; sets foo to the string 'none'
  53. ;
  54. ; If you use constants in your value, and these constants belong to a
  55. ; dynamically loaded extension (either a PHP extension or a Zend extension),
  56. ; you may only use these constants *after* the line that loads the extension.
  57. ;
  58. ; All the values in the php.ini-dist file correspond to the builtin
  59. ; defaults (that is, if no php.ini is used, or if you delete these lines,
  60. ; the builtin defaults will be identical).
  61.  
  62.  
  63. ;;;;;;;;;;;;;;;;;;;;
  64. ; Language Options ;
  65. ;;;;;;;;;;;;;;;;;;;;
  66.  
  67. ; Enable the PHP scripting language engine under Apache.
  68. engine = On
  69.  
  70. ; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
  71. zend.ze1_compatibility_mode = Off
  72.  
  73. ; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.
  74. ; NOTE: Using short tags should be avoided when developing applications or
  75. ; libraries that are meant for redistribution, or deployment on PHP
  76. ; servers which are not under your control, because short tags may not
  77. ; be supported on the target server. For portable, redistributable code,
  78. ; be sure not to use short tags.
  79. short_open_tag = On
  80.  
  81. ; Allow ASP-style <% %> tags.
  82. asp_tags = Off
  83.  
  84. ; The number of significant digits displayed in floating point numbers.
  85. precision    =  12
  86.  
  87. ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
  88. y2k_compliance = On
  89.  
  90. ; Output buffering allows you to send header lines (including cookies) even
  91. ; after you send body content, at the price of slowing PHP's output layer a
  92. ; bit.  You can enable output buffering during runtime by calling the output
  93. ; buffering functions.  You can also enable output buffering for all files by
  94. ; setting this directive to On.  If you wish to limit the size of the buffer
  95. ; to a certain size - you can use a maximum number of bytes instead of 'On', as
  96. ; a value for this directive (e.g., output_buffering=4096).
  97. output_buffering = Off
  98.  
  99. ; You can redirect all of the output of your scripts to a function.  For
  100. ; example, if you set output_handler to "mb_output_handler", character
  101. ; encoding will be transparently converted to the specified encoding.
  102. ; Setting any output handler automatically turns on output buffering.
  103. ; Note: People who wrote portable scripts should not depend on this ini
  104. ;       directive. Instead, explicitly set the output handler using ob_start().
  105. ;       Using this ini directive may cause problems unless you know what script
  106. ;       is doing.
  107. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
  108. ;       and you cannot use both "ob_gzhandler" and "zlib.output_compression".
  109. ;output_handler =
  110.  
  111. ; Transparent output compression using the zlib library
  112. ; Valid values for this option are 'off', 'on', or a specific buffer size
  113. ; to be used for compression (default is 4KB)
  114. ; Note: Resulting chunk size may vary due to nature of compression. PHP
  115. ;       outputs chunks that are few hundreds bytes each as a result of
  116. ;       compression. If you prefer a larger chunk size for better
  117. ;       performance, enable output_buffering in addition.
  118. ; Note: You need to use zlib.output_handler instead of the standard
  119. ;       output_handler, or otherwise the output will be corrupted.
  120. zlib.output_compression = Off
  121.  
  122. ; You cannot specify additional output handlers if zlib.output_compression
  123. ; is activated here. This setting does the same as output_handler but in
  124. ; a different order.
  125. ;zlib.output_handler =
  126.  
  127. ; Implicit flush tells PHP to tell the output layer to flush itself
  128. ; automatically after every output block.  This is equivalent to calling the
  129. ; PHP function flush() after each and every call to print() or echo() and each
  130. ; and every HTML block.  Turning this option on has serious performance
  131. ; implications and is generally recommended for debugging purposes only.
  132. implicit_flush = Off
  133.  
  134. ; The unserialize callback function will called (with the undefind class'
  135. ; name as parameter), if the unserializer finds an undefined class
  136. ; which should be instanciated.
  137. ; A warning appears if the specified function is not defined, or if the
  138. ; function doesn't include/implement the missing class.
  139. ; So only set this entry, if you really want to implement such a
  140. ; callback-function.
  141. unserialize_callback_func=
  142.  
  143. ; When floats & doubles are serialized store serialize_precision significant
  144. ; digits after the floating point. The default value ensures that when floats
  145. ; are decoded with unserialize, the data will remain the same.
  146. serialize_precision = 100
  147.  
  148. ; Whether to enable the ability to force arguments to be passed by reference
  149. ; at function call time.  This method is deprecated and is likely to be
  150. ; unsupported in future versions of PHP/Zend.  The encouraged method of
  151. ; specifying which arguments should be passed by reference is in the function
  152. ; declaration.  You're encouraged to try and turn this option Off and make
  153. ; sure your scripts work properly with it in order to ensure they will work
  154. ; with future versions of the language (you will receive a warning each time
  155. ; you use this feature, and the argument will be passed by value instead of by
  156. ; reference).
  157. allow_call_time_pass_reference = On
  158.  
  159. ; Safe Mode
  160. ;
  161. safe_mode = Off
  162.  
  163. ; By default, Safe Mode does a UID compare check when
  164. ; opening files. If you want to relax this to a GID compare,
  165. ; then turn on safe_mode_gid.
  166. safe_mode_gid = Off
  167.  
  168. ; When safe_mode is on, UID/GID checks are bypassed when
  169. ; including files from this directory and its subdirectories.
  170. ; (directory must also be in include_path or full path must
  171. ; be used when including)
  172. safe_mode_include_dir =
  173.  
  174. ; When safe_mode is on, only executables located in the safe_mode_exec_dir
  175. ; will be allowed to be executed via the exec family of functions.
  176. safe_mode_exec_dir =
  177.  
  178. ; Setting certain environment variables may be a potential security breach.
  179. ; This directive contains a comma-delimited list of prefixes.  In Safe Mode,
  180. ; the user may only alter environment variables whose names begin with the
  181. ; prefixes supplied here.  By default, users will only be able to set
  182. ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
  183. ;
  184. ; Note:  If this directive is empty, PHP will let the user modify ANY
  185. ; environment variable!
  186. safe_mode_allowed_env_vars = PHP_
  187.  
  188. ; This directive contains a comma-delimited list of environment variables that
  189. ; the end user won't be able to change using putenv().  These variables will be
  190. ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
  191. safe_mode_protected_env_vars = LD_LIBRARY_PATH
  192.  
  193. ; open_basedir, if set, limits all file operations to the defined directory
  194. ; and below.  This directive makes most sense if used in a per-directory
  195. ; or per-virtualhost web server configuration file. This directive is
  196. ; *NOT* affected by whether Safe Mode is turned On or Off.
  197. ;open_basedir =
  198.  
  199. ; This directive allows you to disable certain functions for security reasons.
  200. ; It receives a comma-delimited list of function names. This directive is
  201. ; *NOT* affected by whether Safe Mode is turned On or Off.
  202. disable_functions =
  203.  
  204. ; This directive allows you to disable certain classes for security reasons.
  205. ; It receives a comma-delimited list of class names. This directive is
  206. ; *NOT* affected by whether Safe Mode is turned On or Off.
  207. disable_classes =
  208.  
  209. ; Colors for Syntax Highlighting mode.  Anything that's acceptable in
  210. ; <font color="??????"> would work.
  211. ;highlight.string  = #DD0000
  212. ;highlight.comment = #FF9900
  213. ;highlight.keyword = #007700
  214. ;highlight.bg      = #FFFFFF
  215. ;highlight.default = #0000BB
  216. ;highlight.html    = #000000
  217.  
  218.  
  219. ;
  220. ; Misc
  221. ;
  222. ; Decides whether PHP may expose the fact that it is installed on the server
  223. ; (e.g. by adding its signature to the Web server header).  It is no security
  224. ; threat in any way, but it makes it possible to determine whether you use PHP
  225. ; on your server or not.
  226. expose_php = On
  227.  
  228.  
  229. ;;;;;;;;;;;;;;;;;;;
  230. ; Resource Limits ;
  231. ;;;;;;;;;;;;;;;;;;;
  232.  
  233. max_execution_time = 30     ; Maximum execution time of each script, in seconds
  234. max_input_time = 60    ; Maximum amount of time each script may spend parsing request data
  235. memory_limit = 8M      ; Maximum amount of memory a script may consume (8MB)
  236.  
  237. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  238. ; Error handling and logging ;
  239. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  240.  
  241. ; error_reporting is a bit-field.  Or each number up to get desired error
  242. ; reporting level
  243. ; E_ALL             - All errors and warnings
  244. ; E_ERROR           - fatal run-time errors
  245. ; E_WARNING         - run-time warnings (non-fatal errors)
  246. ; E_PARSE           - compile-time parse errors
  247. ; E_NOTICE          - run-time notices (these are warnings which often result
  248. ;                     from a bug in your code, but it's possible that it was
  249. ;                     intentional (e.g., using an uninitialized variable and
  250. ;                     relying on the fact it's automatically initialized to an
  251. ;                     empty string)
  252. ; E_STRICT            - run-time notices, enable to have PHP suggest changes
  253. ;                     to your code which will ensure the best interoperability
  254. ;                     and forward compatability of your code
  255. ; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
  256. ; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
  257. ;                     initial startup
  258. ; E_COMPILE_ERROR   - fatal compile-time errors
  259. ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
  260. ; E_USER_ERROR      - user-generated error message
  261. ; E_USER_WARNING    - user-generated warning message
  262. ; E_USER_NOTICE     - user-generated notice message
  263. ;
  264. ; Examples:
  265. ;
  266. ;   - Show all errors, except for notices
  267. ;
  268. ;error_reporting = E_ALL & ~E_NOTICE
  269. ;
  270. ;   - Show only errors
  271. ;
  272. ;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
  273. ;
  274. ;   - Show all errors except for notices and coding standards warnings
  275. ;
  276. error_reporting  =  E_ALL & ~E_NOTICE & ~E_STRICT
  277.  
  278. ; Print out errors (as a part of the output).  For production web sites,
  279. ; you're strongly encouraged to turn this feature off, and use error logging
  280. ; instead (see below).  Keeping display_errors enabled on a production web site
  281. ; may reveal security information to end users, such as file paths on your Web
  282. ; server, your database schema or other information.
  283. display_errors = On
  284.  
  285. ; Even when display_errors is on, errors that occur during PHP's startup
  286. ; sequence are not displayed.  It's strongly recommended to keep
  287. ; display_startup_errors off, except for when debugging.
  288. display_startup_errors = Off
  289.  
  290. ; Log errors into a log file (server-specific log, stderr, or error_log (below))
  291. ; As stated above, you're strongly advised to use error logging in place of
  292. ; error displaying on production web sites.
  293. log_errors = Off
  294.  
  295. ; Set maximum length of log_errors. In error_log information about the source is
  296. ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
  297. log_errors_max_len = 1024
  298.  
  299. ; Do not log repeated messages. Repeated errors must occur in same file on same
  300. ; line until ignore_repeated_source is set true.
  301. ignore_repeated_errors = Off
  302.  
  303. ; Ignore source of message when ignoring repeated messages. When this setting
  304. ; is On you will not log errors with repeated messages from different files or
  305. ; sourcelines.
  306. ignore_repeated_source = Off
  307.  
  308. ; If this parameter is set to Off, then memory leaks will not be shown (on
  309. ; stdout or in the log). This has only effect in a debug compile, and if
  310. ; error reporting includes E_WARNING in the allowed list
  311. report_memleaks = On
  312.  
  313. ; Store the last error/warning message in $php_errormsg (boolean).
  314. track_errors = Off
  315.  
  316. ; Disable the inclusion of HTML tags in error messages.
  317. ; Note: Never use this feature for production boxes.
  318. ;html_errors = Off
  319.  
  320. ; If html_errors is set On PHP produces clickable error messages that direct
  321. ; to a page describing the error or function causing the error in detail.
  322. ; You can download a copy of the PHP manual from http://www.php.net/docs.php
  323. ; and change docref_root to the base URL of your local copy including the
  324. ; leading '/'. You must also specify the file extension being used including
  325. ; the dot.
  326. ; Note: Never use this feature for production boxes.
  327. ;docref_root = "/phpmanual/"
  328. ;docref_ext = .html
  329.  
  330. ; String to output before an error message.
  331. ;error_prepend_string = "<font color=ff0000>"
  332.  
  333. ; String to output after an error message.
  334. ;error_append_string = "</font>"
  335.  
  336. ; Log errors to specified file.
  337. ;error_log = filename
  338.  
  339. ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
  340. ;error_log = syslog
  341.  
  342.  
  343. ;;;;;;;;;;;;;;;;;
  344. ; Data Handling ;
  345. ;;;;;;;;;;;;;;;;;
  346. ;
  347. ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
  348.  
  349. ; The separator used in PHP generated URLs to separate arguments.
  350. ; Default is "&".
  351. ;arg_separator.output = "&"
  352.  
  353. ; List of separator(s) used by PHP to parse input URLs into variables.
  354. ; Default is "&".
  355. ; NOTE: Every character in this directive is considered as separator!
  356. ;arg_separator.input = ";&"
  357.  
  358. ; This directive describes the order in which PHP registers GET, POST, Cookie,
  359. ; Environment and Built-in variables (G, P, C, E & S respectively, often
  360. ; referred to as EGPCS or GPC).  Registration is done from left to right, newer
  361. ; values override older values.
  362. variables_order = "EGPCS"
  363.  
  364. ; Whether or not to register the EGPCS variables as global variables.  You may
  365. ; want to turn this off if you don't want to clutter your scripts' global scope
  366. ; with user data.  This makes most sense when coupled with track_vars - in which
  367. ; case you can access all of the GPC variables through the $HTTP_*_VARS[],
  368. ; variables.
  369. ;
  370. ; You should do your best to write your scripts so that they do not require
  371. ; register_globals to be on;  Using form variables as globals can easily lead
  372. ; to possible security problems, if the code is not very well thought of.
  373. register_globals = Off
  374.  
  375. ; Whether or not to register the old-style input arrays, HTTP_GET_VARS
  376. ; and friends.  If you're not using them, it's recommended to turn them off,
  377. ; for performance reasons.
  378. register_long_arrays = On
  379.  
  380. ; This directive tells PHP whether to declare the argv&argc variables (that
  381. ; would contain the GET information).  If you don't use these variables, you
  382. ; should turn it off for increased performance.
  383. register_argc_argv = On
  384.  
  385. ; Maximum size of POST data that PHP will accept.
  386. post_max_size = 8M
  387.  
  388. ; Magic quotes
  389. ;
  390.  
  391. ; Magic quotes for incoming GET/POST/Cookie data.
  392. magic_quotes_gpc = On
  393.  
  394. ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
  395. magic_quotes_runtime = Off
  396.  
  397. ; Use Sybase-style magic quotes (escape ' with '' instead of \').
  398. magic_quotes_sybase = Off
  399.  
  400. ; Automatically add files before or after any PHP document.
  401. auto_prepend_file =
  402. auto_append_file =
  403.  
  404. ; As of 4.0b4, PHP always outputs a character encoding by default in
  405. ; the Content-type: header.  To disable sending of the charset, simply
  406. ; set it to be empty.
  407. ;
  408. ; PHP's built-in default is text/html
  409. default_mimetype = "text/html"
  410. ;default_charset = "iso-8859-1"
  411.  
  412. ; Always populate the $HTTP_RAW_POST_DATA variable.
  413. ;always_populate_raw_post_data = On
  414.  
  415.  
  416. ;;;;;;;;;;;;;;;;;;;;;;;;;
  417. ; Paths and Directories ;
  418. ;;;;;;;;;;;;;;;;;;;;;;;;;
  419.  
  420. ; UNIX: "/path1:/path2"
  421. ;include_path = ".:/php/includes"
  422. ;
  423. ; Windows: "\path1;\path2"
  424. ;include_path = ".;c:\php\includes"
  425.  
  426. ; The root of the PHP pages, used only if nonempty.
  427. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  428. ; if you are running php as a CGI under any web server (other than IIS)
  429. ; see documentation for security issues.  The alternate is to use the
  430. ; cgi.force_redirect configuration below
  431. doc_root =
  432.  
  433. ; The directory under which PHP opens the script using /~username used only
  434. ; if nonempty.
  435. user_dir =
  436.  
  437. ; Directory in which the loadable extensions (modules) reside.
  438. INSextension_dir
  439.  
  440. ; Whether or not to enable the dl() function.  The dl() function does NOT work
  441. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  442. ; disabled on them.
  443. enable_dl = On
  444.  
  445. ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
  446. ; most web servers.  Left undefined, PHP turns this on by default.  You can
  447. ; turn it off here AT YOUR OWN RISK
  448. ; **You CAN safely turn this off for IIS, in fact, you MUST.**
  449. ; cgi.force_redirect = 1
  450.  
  451. ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
  452. ; every request.
  453. ; cgi.nph = 1
  454.  
  455. ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
  456. ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
  457. ; will look for to know it is OK to continue execution.  Setting this variable MAY
  458. ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
  459. ; cgi.redirect_status_env = ;
  460.  
  461. ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
  462. ; security tokens of the calling client.  This allows IIS to define the
  463. ; security context that the request runs under.  mod_fastcgi under Apache
  464. ; does not currently support this feature (03/17/2002)
  465. ; Set to 1 if running under IIS.  Default is zero.
  466. ; fastcgi.impersonate = 1;
  467.  
  468. ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
  469. ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
  470. ; is supported by Apache. When this option is set to 1 PHP will send
  471. ; RFC2616 compliant header.
  472. ; Default is zero.
  473. ;cgi.rfc2616_headers = 0
  474.  
  475.  
  476. ;;;;;;;;;;;;;;;;
  477. ; File Uploads ;
  478. ;;;;;;;;;;;;;;;;
  479.  
  480. ; Whether to allow HTTP file uploads.
  481. file_uploads = On
  482.  
  483. ; Temporary directory for HTTP uploaded files (will use system default if not
  484. ; specified).
  485. ;upload_tmp_dir =
  486.  
  487. ; Maximum allowed size for uploaded files.
  488. upload_max_filesize = 2M
  489.  
  490.  
  491. ;;;;;;;;;;;;;;;;;;
  492. ; Fopen wrappers ;
  493. ;;;;;;;;;;;;;;;;;;
  494.  
  495. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  496. allow_url_fopen = On
  497.  
  498. ; Define the anonymous ftp password (your email address)
  499. ;from="john@doe.com"
  500.  
  501. ; Define the User-Agent string
  502. ; user_agent="PHP"
  503.  
  504. ; Default timeout for socket based streams (seconds)
  505. default_socket_timeout = 60
  506.  
  507. ; If your scripts have to deal with files from Macintosh systems,
  508. ; or you are running on a Mac and need to deal with files from
  509. ; unix or win32 systems, setting this flag will cause PHP to
  510. ; automatically detect the EOL character in those files so that
  511. ; fgets() and file() will work regardless of the source of the file.
  512. ; auto_detect_line_endings = Off
  513.  
  514.  
  515. ;;;;;;;;;;;;;;;;;;;;;;
  516. ; Dynamic Extensions ;
  517. ;;;;;;;;;;;;;;;;;;;;;;
  518. ;
  519. ; If you wish to have an extension loaded automatically, use the following
  520. ; syntax:
  521. ;
  522. ;   extension=modulename.extension
  523. ;
  524. ; For example, on Windows:
  525. ;
  526. ;   extension=msql.dll
  527. ;
  528. ; ... or under UNIX:
  529. ;
  530. ;   extension=msql.so
  531. ;
  532. ; Note that it should be the name of the module only; no directory information
  533. ; needs to go here.  Specify the location of the extension with the
  534. ; extension_dir directive above.
  535.  
  536.  
  537. ;Windows Extensions
  538. ;Note that ODBC support is built in, so no dll is needed for it.
  539. ;
  540.  
  541. ;extension=php_bz2.dll
  542. ;extension=php_cpdf.dll
  543. ;extension=php_curl.dll
  544. ;extension=php_dba.dll
  545. ;extension=php_dbase.dll
  546. ;extension=php_dbx.dll
  547. ;extension=php_exif.dll
  548. ;extension=php_fdf.dll
  549. ;extension=php_filepro.dll
  550. ;extension=php_gd2.dll
  551. ;extension=php_gettext.dll
  552. ;extension=php_iconv.dll
  553. ;extension=php_ifx.dll
  554. ;extension=php_iisfunc.dll
  555. ;extension=php_imap.dll
  556. ;extension=php_interbase.dll
  557. ;extension=php_ldap.dll
  558. ;extension=php_mbstring.dll
  559. ;extension=php_mcrypt.dll
  560. ;extension=php_mhash.dll
  561. ;extension=php_mime_magic.dll
  562. ;extension=php_ming.dll
  563. ;extension=php_mssql.dll
  564. ;extension=php_msql.dll
  565. extension=php_mysql.dll
  566. ;extension=php_mysqli.dll
  567. ;extension=php_oci8.dll
  568. ;extension=php_openssl.dll
  569. ;extension=php_oracle.dll
  570. ;extension=php_pdf.dll
  571. ;extension=php_pgsql.dll
  572. ;extension=php_shmop.dll
  573. ;extension=php_snmp.dll
  574. ;extension=php_sockets.dll
  575. ;extension=php_sybase_ct.dll
  576. ;extension=php_tidy.dll
  577. ;extension=php_w32api.dll
  578. ;extension=php_xmlrpc.dll
  579. ;extension=php_xsl.dll
  580. ;extension=php_yaz.dll
  581. ;extension=php_zip.dll
  582.  
  583.  
  584. ;;;;;;;;;;;;;;;;;;;
  585. ; Module Settings ;
  586. ;;;;;;;;;;;;;;;;;;;
  587.  
  588. [Syslog]
  589. ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
  590. ; $LOG_CRON, etc.).  Turning it off is a good idea performance-wise.  In
  591. ; runtime, you can define these variables by calling define_syslog_variables().
  592. define_syslog_variables  = Off
  593.  
  594. [mail function]
  595. ; For Win32 only.
  596. SMTP = localhost
  597.  
  598. ; For Win32 only.
  599. ;sendmail_from = me@example.com
  600.  
  601. ; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
  602. ;sendmail_path =
  603.  
  604. ; Force the addition of the specified parameters to be passed as extra parameters
  605. ; to the sendmail binary. These parameters will always replace the value of
  606. ; the 5th parameter to mail(), even in safe mode.
  607. ;mail.force_extra_paramaters =
  608.  
  609. [SQL]
  610. sql.safe_mode = Off
  611.  
  612. [ODBC]
  613. ;odbc.default_db    =  Not yet implemented
  614. ;odbc.default_user  =  Not yet implemented
  615. ;odbc.default_pw    =  Not yet implemented
  616.  
  617. ; Allow or prevent persistent links.
  618. odbc.allow_persistent = On
  619.  
  620. ; Check that a connection is still valid before reuse.
  621. odbc.check_persistent = On
  622.  
  623. ; Maximum number of persistent links.  -1 means no limit.
  624. odbc.max_persistent = -1
  625.  
  626. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  627. odbc.max_links = -1
  628.  
  629. ; Handling of LONG fields.  Returns number of bytes to variables.  0 means
  630. ; passthru.
  631. odbc.defaultlrl = 4096
  632.  
  633. ; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
  634. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  635. ; of uodbc.defaultlrl and uodbc.defaultbinmode
  636. odbc.defaultbinmode = 1
  637.  
  638. [MySQL]
  639. ; Allow or prevent persistent links.
  640. mysql.allow_persistent = On
  641.  
  642. ; Maximum number of persistent links.  -1 means no limit.
  643. mysql.max_persistent = -1
  644.  
  645. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  646. mysql.max_links = -1
  647.  
  648. ; Default port number for mysql_connect().  If unset, mysql_connect() will use
  649. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  650. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  651. ; at MYSQL_PORT.
  652. mysql.default_port =
  653.  
  654. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  655. ; MySQL defaults.
  656. mysql.default_socket =
  657.  
  658. ; Default host for mysql_connect() (doesn't apply in safe mode).
  659. mysql.default_host =
  660.  
  661. ; Default user for mysql_connect() (doesn't apply in safe mode).
  662. mysql.default_user =
  663.  
  664. ; Default password for mysql_connect() (doesn't apply in safe mode).
  665. ; Note that this is generally a *bad* idea to store passwords in this file.
  666. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  667. ; and reveal this password!  And of course, any users with read access to this
  668. ; file will be able to reveal the password as well.
  669. mysql.default_password =
  670.  
  671. ; Maximum time (in secondes) for connect timeout. -1 means no limimt
  672. mysql.connect_timeout = 60
  673.  
  674. ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  675. ; SQL-Erros will be displayed.
  676. mysql.trace_mode = Off
  677.  
  678. [MySQLI]
  679.  
  680. ; Maximum number of links.  -1 means no limit.
  681. mysqli.max_links = -1
  682.  
  683. ; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
  684. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  685. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  686. ; at MYSQL_PORT.
  687. mysqli.default_port = 3306
  688.  
  689. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  690. ; MySQL defaults.
  691. mysqli.default_socket =
  692.  
  693. ; Default host for mysql_connect() (doesn't apply in safe mode).
  694. mysqli.default_host =
  695.  
  696. ; Default user for mysql_connect() (doesn't apply in safe mode).
  697. mysqli.default_user =
  698.  
  699. ; Default password for mysqli_connect() (doesn't apply in safe mode).
  700. ; Note that this is generally a *bad* idea to store passwords in this file.
  701. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_password")
  702. ; and reveal this password!  And of course, any users with read access to this
  703. ; file will be able to reveal the password as well.
  704. mysqli.default_password =
  705.  
  706. ; Allow or prevent reconnect
  707. mysqli.reconnect = Off
  708.  
  709. [mSQL]
  710. ; Allow or prevent persistent links.
  711. msql.allow_persistent = On
  712.  
  713. ; Maximum number of persistent links.  -1 means no limit.
  714. msql.max_persistent = -1
  715.  
  716. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  717. msql.max_links = -1
  718.  
  719. [PostgresSQL]
  720. ; Allow or prevent persistent links.
  721. pgsql.allow_persistent = On
  722.  
  723. ; Detect broken persistent links always with pg_pconnect(). Need a little overhead.
  724. pgsql.auto_reset_persistent = Off
  725.  
  726. ; Maximum number of persistent links.  -1 means no limit.
  727. pgsql.max_persistent = -1
  728.  
  729. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  730. pgsql.max_links = -1
  731.  
  732. ; Ignore PostgreSQL backends Notice message or not.
  733. pgsql.ignore_notice = 0
  734.  
  735. ; Log PostgreSQL backends Noitce message or not.
  736. ; Unless pgsql.ignore_notice=0, module cannot log notice message.
  737. pgsql.log_notice = 0
  738.  
  739. [Sybase]
  740. ; Allow or prevent persistent links.
  741. sybase.allow_persistent = On
  742.  
  743. ; Maximum number of persistent links.  -1 means no limit.
  744. sybase.max_persistent = -1
  745.  
  746. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  747. sybase.max_links = -1
  748.  
  749. ;sybase.interface_file = "/usr/sybase/interfaces"
  750.  
  751. ; Minimum error severity to display.
  752. sybase.min_error_severity = 10
  753.  
  754. ; Minimum message severity to display.
  755. sybase.min_message_severity = 10
  756.  
  757. ; Compatability mode with old versions of PHP 3.0.
  758. ; If on, this will cause PHP to automatically assign types to results according
  759. ; to their Sybase type, instead of treating them all as strings.  This
  760. ; compatability mode will probably not stay around forever, so try applying
  761. ; whatever necessary changes to your code, and turn it off.
  762. sybase.compatability_mode = Off
  763.  
  764. [Sybase-CT]
  765. ; Allow or prevent persistent links.
  766. sybct.allow_persistent = On
  767.  
  768. ; Maximum number of persistent links.  -1 means no limit.
  769. sybct.max_persistent = -1
  770.  
  771. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  772. sybct.max_links = -1
  773.  
  774. ; Minimum server message severity to display.
  775. sybct.min_server_severity = 10
  776.  
  777. ; Minimum client message severity to display.
  778. sybct.min_client_severity = 10
  779.  
  780. [dbx]
  781. ; returned column names can be converted for compatibility reasons
  782. ; possible values for dbx.colnames_case are
  783. ; "unchanged" (default, if not set)
  784. ; "lowercase"
  785. ; "uppercase"
  786. ; the recommended default is either upper- or lowercase, but
  787. ; unchanged is currently set for backwards compatibility
  788. dbx.colnames_case = "unchanged"
  789.  
  790. [bcmath]
  791. ; Number of decimal digits for all bcmath functions.
  792. bcmath.scale = 0
  793.  
  794. [browscap]
  795. ;browscap = extra/browscap.ini
  796.  
  797. [Informix]
  798. ; Default host for ifx_connect() (doesn't apply in safe mode).
  799. ifx.default_host =
  800.  
  801. ; Default user for ifx_connect() (doesn't apply in safe mode).
  802. ifx.default_user =
  803.  
  804. ; Default password for ifx_connect() (doesn't apply in safe mode).
  805. ifx.default_password =
  806.  
  807. ; Allow or prevent persistent links.
  808. ifx.allow_persistent = On
  809.  
  810. ; Maximum number of persistent links.  -1 means no limit.
  811. ifx.max_persistent = -1
  812.  
  813. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  814. ifx.max_links = -1
  815.  
  816. ; If on, select statements return the contents of a text blob instead of its id.
  817. ifx.textasvarchar = 0
  818.  
  819. ; If on, select statements return the contents of a byte blob instead of its id.
  820. ifx.byteasvarchar = 0
  821.  
  822. ; Trailing blanks are stripped from fixed-length char columns.  May help the
  823. ; life of Informix SE users.
  824. ifx.charasvarchar = 0
  825.  
  826. ; If on, the contents of text and byte blobs are dumped to a file instead of
  827. ; keeping them in memory.
  828. ifx.blobinfile = 0
  829.  
  830. ; NULL's are returned as empty strings, unless this is set to 1.  In that case,
  831. ; NULL's are returned as string 'NULL'.
  832. ifx.nullformat = 0
  833.  
  834. [Session]
  835. ; Handler used to store/retrieve data.
  836. session.save_handler = files
  837.  
  838. ; Argument passed to save_handler.  In the case of files, this is the path
  839. ; where data files are stored. Note: Windows users have to change this
  840. ; variable in order to use PHP's session functions.
  841. ;
  842. ; As of PHP 4.0.1, you can define the path as:
  843. ;
  844. ;     session.save_path = "N;/path"
  845. ;
  846. ; where N is an integer.  Instead of storing all the session files in
  847. ; /path, what this will do is use subdirectories N-levels deep, and
  848. ; store the session data in those directories.  This is useful if you
  849. ; or your OS have problems with lots of files in one directory, and is
  850. ; a more efficient layout for servers that handle lots of sessions.
  851. ;
  852. ; NOTE 1: PHP will not create this directory structure automatically.
  853. ;         You can use the script in the ext/session dir for that purpose.
  854. ; NOTE 2: See the section on garbage collection below if you choose to
  855. ;         use subdirectories for session storage
  856. ;
  857. ; The file storage module creates files using mode 600 by default.
  858. ; You can change that by using
  859. ;
  860. ;     session.save_path = "N;MODE;/path"
  861. ;
  862. ; where MODE is the octal representation of the mode. Note that this
  863. ; does not overwrite the process's umask.
  864. INSsession
  865.  
  866. ; Whether to use cookies.
  867. session.use_cookies = 1
  868.  
  869. ; This option enables administrators to make their users invulnerable to
  870. ; attacks which involve passing session ids in URLs; defaults to 0.
  871. ; session.use_only_cookies = 1
  872.  
  873. ; Name of the session (used as cookie name).
  874. session.name = PHPSESSID
  875.  
  876. ; Initialize session on request startup.
  877. session.auto_start = 0
  878.  
  879. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  880. session.cookie_lifetime = 0
  881.  
  882. ; The path for which the cookie is valid.
  883. session.cookie_path = /
  884.  
  885. ; The domain for which the cookie is valid.
  886. session.cookie_domain =
  887.  
  888. ; Handler used to serialize data.  php is the standard serializer of PHP.
  889. session.serialize_handler = php
  890.  
  891. ; Define the probability that the 'garbage collection' process is started
  892. ; on every session initialization.
  893. ; The probability is calculated by using gc_probability/gc_divisor,
  894. ; e.g. 1/100 means there is a 1% chance that the GC process starts
  895. ; on each request.
  896.  
  897. session.gc_probability = 1
  898. session.gc_divisor     = 100
  899.  
  900. ; After this number of seconds, stored data will be seen as 'garbage' and
  901. ; cleaned up by the garbage collection process.
  902. session.gc_maxlifetime = 1440
  903.  
  904. ; NOTE: If you are using the subdirectory option for storing session files
  905. ;       (see session.save_path above), then garbage collection does *not*
  906. ;       happen automatically.  You will need to do your own garbage
  907. ;       collection through a shell script, cron entry, or some other method.
  908. ;       For example, the following script would is the equivalent of
  909. ;       setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
  910. ;          cd /path/to/sessions; find -cmin +24 | xargs rm
  911.  
  912. ; PHP 4.2 and less have an undocumented feature/bug that allows you to
  913. ; to initialize a session variable in the global scope, albeit register_globals
  914. ; is disabled.  PHP 4.3 and later will warn you, if this feature is used.
  915. ; You can disable the feature and the warning seperately. At this time,
  916. ; the warning is only displayed, if bug_compat_42 is enabled.
  917.  
  918. session.bug_compat_42 = 1
  919. session.bug_compat_warn = 1
  920.  
  921. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  922. ; HTTP_REFERER has to contain this substring for the session to be
  923. ; considered as valid.
  924. session.referer_check =
  925.  
  926. ; How many bytes to read from the file.
  927. session.entropy_length = 0
  928.  
  929. ; Specified here to create the session id.
  930. session.entropy_file =
  931.  
  932. ;session.entropy_length = 16
  933.  
  934. ;session.entropy_file = /dev/urandom
  935.  
  936. ; Set to {nocache,private,public,} to determine HTTP caching aspects
  937. ; or leave this empty to avoid sending anti-caching headers.
  938. session.cache_limiter = nocache
  939.  
  940. ; Document expires after n minutes.
  941. session.cache_expire = 180
  942.  
  943. ; trans sid support is disabled by default.
  944. ; Use of trans sid may risk your users security.
  945. ; Use this option with caution.
  946. ; - User may send URL contains active session ID
  947. ;   to other person via. email/irc/etc.
  948. ; - URL that contains active session ID may be stored
  949. ;   in publically accessible computer.
  950. ; - User may access your site with the same session ID
  951. ;   always using URL stored in browser's history or bookmarks.
  952. session.use_trans_sid = 0
  953.  
  954. ; Select a hash function
  955. ; 0: MD5   (128 bits)
  956. ; 1: SHA-1 (160 bits)
  957. session.hash_function = 0
  958.  
  959. ; Define how many bits are stored in each character when converting
  960. ; the binary hash data to something readable.
  961. ;
  962. ; 4 bits: 0-9, a-f
  963. ; 5 bits: 0-9, a-v
  964. ; 6 bits: 0-9, a-z, A-Z, "-", ","
  965. session.hash_bits_per_character = 4
  966.  
  967. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  968. ; form/fieldset are special; if you include them here, the rewriter will
  969. ; add a hidden <input> field with the info which is otherwise appended
  970. ; to URLs.  If you want XHTML conformity, remove the form entry.
  971. ; Note that all valid entries require a "=", even if no value follows.
  972. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset="
  973.  
  974. [MSSQL]
  975. ; Allow or prevent persistent links.
  976. mssql.allow_persistent = On
  977.  
  978. ; Maximum number of persistent links.  -1 means no limit.
  979. mssql.max_persistent = -1
  980.  
  981. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  982. mssql.max_links = -1
  983.  
  984. ; Minimum error severity to display.
  985. mssql.min_error_severity = 10
  986.  
  987. ; Minimum message severity to display.
  988. mssql.min_message_severity = 10
  989.  
  990. ; Compatability mode with old versions of PHP 3.0.
  991. mssql.compatability_mode = Off
  992.  
  993. ; Connect timeout
  994. ;mssql.connect_timeout = 5
  995.  
  996. ; Query timeout
  997. ;mssql.timeout = 60
  998.  
  999. ; Valid range 0 - 2147483647.  Default = 4096.
  1000. ;mssql.textlimit = 4096
  1001.  
  1002. ; Valid range 0 - 2147483647.  Default = 4096.
  1003. ;mssql.textsize = 4096
  1004.  
  1005. ; Limits the number of records in each batch.  0 = all records in one batch.
  1006. ;mssql.batchsize = 0
  1007.  
  1008. ; Specify how datetime and datetim4 columns are returned
  1009. ; On => Returns data converted to SQL server settings
  1010. ; Off => Returns values as YYYY-MM-DD hh:mm:ss
  1011. ;mssql.datetimeconvert = On
  1012.  
  1013. ; Use NT authentication when connecting to the server
  1014. mssql.secure_connection = Off
  1015.  
  1016. ; Specify max number of processes. Default = 25
  1017. ;mssql.max_procs = 25
  1018.  
  1019. [Assertion]
  1020. ; Assert(expr); active by default.
  1021. ;assert.active = On
  1022.  
  1023. ; Issue a PHP warning for each failed assertion.
  1024. ;assert.warning = On
  1025.  
  1026. ; Don't bail out by default.
  1027. ;assert.bail = Off
  1028.  
  1029. ; User-function to be called if an assertion fails.
  1030. ;assert.callback = 0
  1031.  
  1032. ; Eval the expression with current error_reporting().  Set to true if you want
  1033. ; error_reporting(0) around the eval().
  1034. ;assert.quiet_eval = 0
  1035.  
  1036. [Ingres II]
  1037. ; Allow or prevent persistent links.
  1038. ingres.allow_persistent = On
  1039.  
  1040. ; Maximum number of persistent links.  -1 means no limit.
  1041. ingres.max_persistent = -1
  1042.  
  1043. ; Maximum number of links, including persistents.  -1 means no limit.
  1044. ingres.max_links = -1
  1045.  
  1046. ; Default database (format: [node_id::]dbname[/srv_class]).
  1047. ingres.default_database =
  1048.  
  1049. ; Default user.
  1050. ingres.default_user =
  1051.  
  1052. ; Default password.
  1053. ingres.default_password =
  1054.  
  1055. [Verisign Payflow Pro]
  1056. ; Default Payflow Pro server.
  1057. pfpro.defaulthost = "test-payflow.verisign.com"
  1058.  
  1059. ; Default port to connect to.
  1060. pfpro.defaultport = 443
  1061.  
  1062. ; Default timeout in seconds.
  1063. pfpro.defaulttimeout = 30
  1064.  
  1065. ; Default proxy IP address (if required).
  1066. ;pfpro.proxyaddress =
  1067.  
  1068. ; Default proxy port.
  1069. ;pfpro.proxyport =
  1070.  
  1071. ; Default proxy logon.
  1072. ;pfpro.proxylogon =
  1073.  
  1074. ; Default proxy password.
  1075. ;pfpro.proxypassword =
  1076.  
  1077. [Sockets]
  1078. ; Use the system read() function instead of the php_read() wrapper.
  1079. sockets.use_system_read = On
  1080.  
  1081. [com]
  1082. ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
  1083. ;com.typelib_file =
  1084. ; allow Distributed-COM calls
  1085. ;com.allow_dcom = true
  1086. ; autoregister constants of a components typlib on com_load()
  1087. ;com.autoregister_typelib = true
  1088. ; register constants casesensitive
  1089. ;com.autoregister_casesensitive = false
  1090. ; show warnings on duplicate constat registrations
  1091. ;com.autoregister_verbose = true
  1092.  
  1093. [mbstring]
  1094. ; language for internal character representation.
  1095. ;mbstring.language = Japanese
  1096.  
  1097. ; internal/script encoding.
  1098. ; Some encoding cannot work as internal encoding.
  1099. ; (e.g. SJIS, BIG5, ISO-2022-*)
  1100. ;mbstring.internal_encoding = EUC-JP
  1101.  
  1102. ; http input encoding.
  1103. ;mbstring.http_input = auto
  1104.  
  1105. ; http output encoding. mb_output_handler must be
  1106. ; registered as output buffer to function
  1107. ;mbstring.http_output = SJIS
  1108.  
  1109. ; enable automatic encoding translation accoding to
  1110. ; mbstring.internal_encoding setting. Input chars are
  1111. ; converted to internal encoding by setting this to On.
  1112. ; Note: Do _not_ use automatic encoding translation for
  1113. ;       portable libs/applications.
  1114. ;mbstring.encoding_translation = Off
  1115.  
  1116. ; automatic encoding detection order.
  1117. ; auto means
  1118. ;mbstring.detect_order = auto
  1119.  
  1120. ; substitute_character used when character cannot be converted
  1121. ; one from another
  1122. ;mbstring.substitute_character = none;
  1123.  
  1124. ; overload(replace) single byte functions by mbstring functions.
  1125. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
  1126. ; etc. Possible values are 0,1,2,4 or combination of them.
  1127. ; For example, 7 for overload everything.
  1128. ; 0: No overload
  1129. ; 1: Overload mail() function
  1130. ; 2: Overload str*() functions
  1131. ; 4: Overload ereg*() functions
  1132. ;mbstring.func_overload = 0
  1133.  
  1134. [FrontBase]
  1135. ;fbsql.allow_persistent = On
  1136. ;fbsql.autocommit = On
  1137. ;fbsql.default_database =
  1138. ;fbsql.default_database_password =
  1139. ;fbsql.default_host =
  1140. ;fbsql.default_password =
  1141. ;fbsql.default_user = "_SYSTEM"
  1142. ;fbsql.generate_warnings = Off
  1143. ;fbsql.max_connections = 128
  1144. ;fbsql.max_links = 128
  1145. ;fbsql.max_persistent = -1
  1146. ;fbsql.max_results = 128
  1147. ;fbsql.batchSize = 1000
  1148.  
  1149. [exif]
  1150. ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
  1151. ; With mbstring support this will automatically be converted into the encoding
  1152. ; given by corresponding encode setting. When empty mbstring.internal_encoding
  1153. ; is used. For the decode settings you can distinguish between motorola and
  1154. ; intel byte order. A decode setting cannot be empty.
  1155. ;exif.encode_unicode = ISO-8859-15
  1156. ;exif.decode_unicode_motorola = UCS-2BE
  1157. ;exif.decode_unicode_intel    = UCS-2LE
  1158. ;exif.encode_jis =
  1159. ;exif.decode_jis_motorola = JIS
  1160. ;exif.decode_jis_intel    = JIS
  1161.  
  1162. [Tidy]
  1163. ; The path to a default tidy configuration file to use when using tidy
  1164. ;tidy.default_config = /usr/local/lib/php/default.tcfg
  1165.  
  1166. ; Should tidy clean and repair output automatically?
  1167. ; WARNING: Do not use this option if you are generating non-html content
  1168. ; such as dynamic images
  1169. tidy.clean_output = Off
  1170.  
  1171. ; Local Variables:
  1172. ; tab-width: 4
  1173. ; End:
  1174.